check if two timespans intersect c#

45

check if two timespans intersect c# -

bool overlap = a.start < b.end && b.start < a.end;

Comments

Submit
0 Comments